home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AMP Graphics Collection
/
AMP Graphics Collection.iso
/
programs
/
author
/
versions
/
testd4.dir
/
00012_Script_12
< prev
next >
Wrap
Text File
|
1996-08-09
|
221b
|
10 lines
on stripReturns s
put the number of lines in s into theLines
if theLines < 2 then return s
set outS to ""
repeat with i = 1 to theLines
put line i of s & " " after outS
end repeat
return outS
end